.project-case {
  padding: 80px 0;
  background: #f8f9fb;
  font-family: "Segoe UI", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.project-header {
  margin-bottom: 40px;
}

.project-header h2 {
  font-size: 36px;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.project-tag {
  display: inline-block;
  background: #e53935;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 4px;
}

/* Grid Layout */
.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Text */
.project-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-text h3 {
  color: #0b2c4d;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.project-points {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}
.red-line {
  width: 60px;
  height: 3px;
  background: #c40000;
  margin: 15px 0;
}

.project-points li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}
.red-line {
  width: 60px;
  height: 3px;
  background: #c40000;
  margin: 15px 0;
}

/* Image */
.project-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.back-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 18px;
  background-color: #910b1d;   /* Blue */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-header h2 {
    font-size: 28px;
  }
}
